home *** CD-ROM | disk | FTP | other *** search
/ Chip 1999 March / CHIP Turkiye Mart 1999.iso / araclar / Win98 / HTML-Tool / DWESD.EXE / data.z / frames.dcr / Standard_132_Wait on Frame.ls < prev    next >
Encoding:
Text File  |  1998-04-02  |  556 b   |  21 lines

  1. property howLong, currentTime
  2.  
  3. on prepareFrame
  4.   set currentTime to the timer
  5. end
  6.  
  7. on exitFrame
  8.   repeat while the timer < (currentTime + howLong)
  9.     nothing()
  10.   end repeat
  11. end
  12.  
  13. on getPropertyDescriptionList
  14.   set propertyDescriptionList to [#howLong: [#comment: "How long to wait (1/60th seconds):", #format: #integer, #default: 10]]
  15.   return propertyDescriptionList
  16. end
  17.  
  18. on getBehaviorDescription
  19.   return "This behavior hold the playback head in place for the amount of time specified in " & QUOTE & " the how long to wait " & QUOTE & " property."
  20. end
  21.